home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000216_news@columbia.edu_Mon Nov 21 17:19:20 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04238
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:19:25 -0500
  3. Received: by apakabar.cc.columbia.edu id AA06734
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:19:23 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Is there anyway to quit kermit without hanging up?
  9. Date: 21 Nov 1994 17:19:20 GMT
  10. Organization: Columbia University
  11. Lines: 25
  12. Message-Id: <3aqkqo$6ia@apakabar.cc.columbia.edu>
  13. References: <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Pine.OSF.3.91a.941120223713.15730A-100000@saul1.u.washington.edu>,
  18. Micah Anderson  <micah@u.washington.edu> wrote:
  19. >I am running kermit on ultrix 4.3 and I want to be able to call up with 
  20. >kermit and then quit kermit, but NOT hangup the modem - so I can then run 
  21. >slattach and start a slip connection. The reason I want to do this is 
  22. >because I cannot get the chat script for the slip.hosts to work and 
  23. >figured that if I can just call up with kermit and then get out of kermit 
  24. >but leave the tty attached but accessable via slattach I could then start 
  25. >slip going...
  26. >
  27. Since UNIX is a "real operating system" -- unlike, say, DOS -- processes
  28. close all open file handles when they exit.  So no, you can't use C-Kermit
  29. on UNIX to open a connection and then exit and expect for it to be left
  30. open, at least not unless you configure the modem to ignore DTR, and take
  31. a few other esoteric steps, none of which are recommended as they pose
  32. distinct security risks.
  33.  
  34. But there are several ways for C-Kermit to give access to its connection to
  35. other processes, which are covered mostly in section 11 of the file
  36. ckuker.bwr, which comes with C-Kermit 5A(190).  These include PUSHing from
  37. C-Kermit, suspending C-Kermit, and forking (via ! or REDIRECT) other processes
  38. from C-Kermit.  So read this material, and also read about the new (to edit
  39. 190) REDIRECT command in the 5A(190) ckcker.upd file.
  40.  
  41. - Frank